home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 3 of 3.iso / chapte12 / tapicall.c < prev    next >
C/C++ Source or Header  |  1996-04-28  |  8KB  |  292 lines

  1. #include <windows.h> 
  2. #include <windowsx.h> 
  3. #include "tapiCall.h" 
  4. #include "tapi.h"
  5.  
  6. #define BUFSIZE 256
  7.  
  8. #if defined (WIN32)
  9.     #define IS_WIN32 TRUE
  10. #else
  11.     #define IS_WIN32 FALSE
  12. #endif
  13.  
  14. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  15. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  16. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  17.  
  18. HINSTANCE hInst;   // current instance
  19. HWND hWnd;         // parent window handle
  20. HWND hListWnd;     // listbox
  21. HDC  hdc;
  22. TEXTMETRIC  tm ;
  23.  
  24.  
  25. LPCTSTR lpszAppName = "tapiRequestMakeCall";
  26. LPCTSTR lpszTitle   = "Assisted Telephony Application"; 
  27.  
  28. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  29.  
  30.  
  31. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  32.                       LPTSTR lpCmdLine, int nCmdShow)
  33. {
  34.    MSG      msg;
  35.    WNDCLASS wc;
  36.  
  37.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  38.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  39.    wc.cbClsExtra    = 0;                      
  40.    wc.cbWndExtra    = 0;                      
  41.    wc.hInstance     = hInstance;              
  42.    wc.hIcon         = LoadIcon (hInstance, lpszAppName); 
  43.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  44.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  45.    wc.lpszMenuName  = lpszAppName;              
  46.    wc.lpszClassName = lpszAppName;              
  47.  
  48.    if ( IS_WIN95 )
  49.    {
  50.       if ( !RegisterWin95( &wc ) )
  51.          return( FALSE );
  52.    }
  53.    else if ( !RegisterClass( &wc ) )
  54.       return( FALSE );
  55.  
  56.    hInst = hInstance; 
  57.  
  58.    hWnd = CreateWindow( lpszAppName, 
  59.                         lpszTitle,    
  60.                         WS_OVERLAPPEDWINDOW, 
  61.                         CW_USEDEFAULT, 0, 
  62.                         CW_USEDEFAULT, 0,  
  63.                         NULL,              
  64.                         NULL,              
  65.                         hInstance,         
  66.                         NULL               
  67.                       );
  68.  
  69.    if ( !hWnd ) 
  70.       return( FALSE );
  71.  
  72.    ShowWindow( hWnd, nCmdShow ); 
  73.    UpdateWindow( hWnd );         
  74.  
  75.    while( GetMessage( &msg, NULL, 0, 0) )   
  76.    {
  77.       TranslateMessage( &msg ); 
  78.       DispatchMessage( &msg );  
  79.    }
  80.  
  81.    return( msg.wParam ); 
  82. }
  83.  
  84.  
  85. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  86. {
  87.     WNDCLASSEX wcex;
  88.  
  89.    wcex.style         = lpwc->style;
  90.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  91.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  92.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  93.    wcex.hInstance     = lpwc->hInstance;
  94.    wcex.hIcon         = lpwc->hIcon;
  95.    wcex.hCursor       = lpwc->hCursor;
  96.    wcex.hbrBackground = lpwc->hbrBackground;
  97.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  98.    wcex.lpszClassName = lpwc->lpszClassName;
  99.  
  100.    // Added elements for Windows 95.
  101.    //...............................
  102.    wcex.cbSize = sizeof(WNDCLASSEX);
  103.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  104.                             IMAGE_ICON, 16, 16,
  105.                             LR_DEFAULTCOLOR );
  106.             
  107.    return RegisterClassEx( &wcex );
  108. }
  109.  
  110.  
  111. LONG lRet;
  112. char buf[BUFSIZE];
  113. char szName[BUFSIZE];
  114. char szNumber[BUFSIZE];
  115. char szCountry[8];
  116. char szAreaCd[8];
  117. char szCanonical[15];
  118. char szComment[BUFSIZE]; 
  119.  
  120.  
  121. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  122. {
  123.    switch( uMsg )
  124.    {
  125.       case WM_COMMAND :
  126.          switch( LOWORD( wParam ) )
  127.          {
  128.               case IDM_DIAL  :
  129.                 DialogBox( hInst, "IDD_DIALNUM", hWnd, (DLGPROC)Dial );
  130.                    return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );      
  131.             
  132.                    
  133.             case IDM_ABOUT :
  134.                 DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  135.                 break;
  136.  
  137.             case IDM_EXIT :
  138.                   DestroyWindow( hWnd );
  139.                    break;
  140.          }
  141.       
  142.        case WM_CREATE :
  143.  
  144.           hdc = GetDC (hWnd) ;
  145.           GetTextMetrics (hdc, &tm) ;
  146.           ReleaseDC (hWnd, hdc) ;
  147.  
  148.           hListWnd = CreateWindow ("listbox", NULL,
  149.                               WS_CHILD | WS_VISIBLE, 
  150.                               tm.tmAveCharWidth, tm.tmHeight * 3,
  151.                               tm.tmAveCharWidth * 16 +
  152.                                    GetSystemMetrics (SM_CXVSCROLL),
  153.                               tm.tmHeight * 5,
  154.                               hWnd, (HMENU)1,
  155.                               (HINSTANCE) hInst, NULL) ;
  156.  
  157.           break;
  158.       
  159.           case WM_SIZE:
  160.             MoveWindow(hListWnd, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE);
  161.              break;
  162.   
  163.  
  164.       case WM_DESTROY :
  165.               PostQuitMessage(0);
  166.               break;
  167.             
  168.       default :
  169.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  170.    }
  171.  
  172.    return( 0L );
  173. }
  174.  
  175.  
  176.  
  177.  
  178. /****************************************************************************
  179.     FUNCTION: tapiError
  180.     PURPOSE:  Assisted Telphony error messages
  181. ****************************************************************************/
  182. void tapiError (LONG lrc)
  183. {
  184.  switch (lrc) {
  185.     case TAPIERR_NOREQUESTRECIPIENT:
  186.        MessageBox (hWnd, "No request recipient.", "", MB_OK);
  187.        break;
  188.     case TAPIERR_REQUESTQUEUEFULL:
  189.        MessageBox (hWnd,"The request queue is full, try again later.", "", 
  190.                    MB_OK);
  191.        break;
  192.     case TAPIERR_INVALDESTADDRESS:
  193.        MessageBox (hWnd, "Invalid destination address.", "", MB_OK);
  194.        break;
  195.     
  196.     case TAPIERR_REQUESTFAILED:
  197.        MessageBox (hWnd, "The request failed for an unknown reason.", "", MB_OK);
  198.        break;
  199.  
  200.     case TAPIERR_INVALPOINTER:
  201.        MessageBox (hWnd, "An invalid pointer was passed in as a paramater.", "", MB_OK);
  202.        break;
  203.     
  204.     default:
  205.        MessageBox (hWnd, "Unknown Error.", "", MB_OK);
  206.        break;
  207.         
  208.     }
  209.     
  210.              
  211. }
  212.  
  213. LRESULT CALLBACK About( HWND hDlg,           
  214.                         UINT message,        
  215.                         WPARAM wParam,       
  216.                         LPARAM lParam)
  217. {
  218.    switch (message) 
  219.    {
  220.        case WM_INITDIALOG: 
  221.                return (TRUE);
  222.  
  223.        case WM_COMMAND:                              
  224.                if (   LOWORD(wParam) == IDOK         
  225.                    || LOWORD(wParam) == IDCANCEL)    
  226.                {
  227.                        EndDialog(hDlg, TRUE);        
  228.                        return (TRUE);
  229.                }
  230.                break;
  231.    }
  232.  
  233.    return (FALSE); 
  234. }
  235.  
  236.  
  237. LRESULT CALLBACK Dial ( HWND hDlg,           // window handle of the dialog box
  238.                         UINT message,        // type of message
  239.                         WPARAM wParam,       // message-specific information
  240.                         LPARAM lParam)
  241. {
  242.    switch (message) 
  243.    {
  244.        case WM_INITDIALOG:  // message: initialize dialog box
  245.                {
  246.                   lRet = tapiGetLocationInfo(szCountry, szAreaCd);
  247.                       if (lRet > 0)
  248.                            tapiError(lRet);
  249.                   else
  250.                   {
  251.                      SetDlgItemText(hDlg, IDC_COUNTRYCODE, szCountry);
  252.                          SetDlgItemText(hDlg, IDC_AREACODE, szAreaCd);
  253.                   }
  254.                }
  255.                return (TRUE);
  256.  
  257.        case WM_COMMAND:                              // message: received a command
  258.                if (   LOWORD(wParam) == IDOK )        // "OK" box selected?
  259.                {
  260.                   GetDlgItemText(hDlg, IDC_NAME, szName, 128);
  261.                       GetDlgItemText(hDlg, IDC_NUMBER, szNumber, 128);
  262.                   GetDlgItemText(hDlg, IDC_COUNTRYCODE, szCountry, 128);
  263.                   GetDlgItemText(hDlg, IDC_AREACODE, szAreaCd, 128);
  264.                   GetDlgItemText(hDlg, IDC_COMMENT, szComment, 128);
  265.                       
  266.                       strcat(szCanonical, szCountry);
  267.                   strcat(szCanonical, "-");
  268.                   strcat(szCanonical, szAreaCd);
  269.                   strcat(szCanonical, "-");
  270.                   strcat(szCanonical, szNumber);
  271.  
  272.                       lRet = tapiRequestMakeCall(szCanonical, lpszAppName, szName, szComment);
  273.                       if (lRet > 0)
  274.                            tapiError(lRet);
  275.  
  276.                }               
  277.                      
  278.                if (   LOWORD(wParam) == IDCANCEL)         // "OK" box selected?
  279.                {
  280.                        EndDialog(hDlg, TRUE);        // Exit the dialog
  281.                        return (TRUE);
  282.                }
  283.                break;
  284.    }
  285.  
  286.    return (FALSE); 
  287. }
  288.  
  289.  
  290.  
  291.  
  292.